home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v8n02.arc / ANSI.DOC < prev    next >
Text File  |  1989-01-08  |  2KB  |  49 lines

  1. ANSI.COM
  2. Command
  3.  
  4. Michael J. Mefford
  5. 1989 No. 2 (Utilities)
  6.  
  7.  
  8. Purpose:    A memory-resident utility that enables selectable use of the
  9. extended screen and keyboard control sequences that normally require loading the
  10. ANSI.SYS device driver.  Unlike ANSI.SYS, ANSI.COM supports all video modes,
  11. permits sizing and clearing the key-assignment buffer, and provides high-speed
  12. screen updating.
  13.     
  14. Format:    ANSI [FAST | SLOW][ON | OFF][/B nnn][/C][/U]
  15.     
  16. Remarks:    ANSI.COM may be installed either at the DOS prompt or through an
  17. AUTOEXEC.BAT file.  It will not load itself if ANSI.SYS has already been loaded
  18. as part of a CONFIG.SYS file.  ANSI.COM will not load multiple copies of itself,
  19. so its command name may be invoked repeatedly in the same session to change
  20. user-selectable parameters.
  21.  
  22.     Upon loading, ANSI defaults to the FAST and ON status parameters.  For
  23. use with IBM CGA video cards (where direct screen writes produce "snow") or with
  24. some screen capture software, the SLOW (screen writing via the BIOS, as with
  25. ANSI.SYS) status option may be selected.  Entering ANSI OFF disables recognition
  26. of the ANSI control codes. 
  27.  
  28.     The ANSI.COM key assignment buffer defaults to a size of 200 bytes.  The
  29. buffer may be increased to as much as 60K or decreased to 0 bytes by entering
  30. ANSI with the /B switch and the desired number of bytes as nnn.  Resizing the
  31. buffer after initial installation requires deinstallation, which may be
  32. accomplished using the /U switch.  Current key assignments are lost if the
  33. buffer is resized.  The buffer can be cleared without resizing by invoking ANSI
  34. with the /C switch.
  35.  
  36.     The full command set of IBM-ANSI control sequences is printed in the
  37. original article and in the DOS Technical Reference manual.  This information
  38. can also be downloaded from PC Magnet.
  39.  
  40.     Available for downloading from PC MagNet (see the ANSI by Modem
  41. sidebar), ANSI.COM is already compiled and ready to run.  ANSI.BAS will
  42. automatically create ANSI.COM when run once in BASIC.  To create ANSI.COM from
  43. the ANSI.ASM source code requires use of a macro assembler (IBM or Microsoft,
  44. Version 2 or later) and the following commands:
  45.  
  46. MASM ANSI;
  47. LINK ANSI;
  48. EXE2BIN ANSI ANSI.COM;
  49.